home *** CD-ROM | disk | FTP | other *** search
/ Mac-Source 1994 July / Mac-Source_July_1994.iso / C and C++ / Miscellaneous / Headlines Code / Misc Headers ƒ / NeoTextBox.h < prev   
Text File  |  1992-01-06  |  830b  |  19 lines

  1. /*****************************************************************************************
  2.  
  3. NeoTextBox.h - include file for NeoTextBox
  4.  
  5. Written by Bryan K. Ressler (Beaker)
  6.  
  7. *****************************************************************************************/
  8.  
  9. /** DEFINES *****************************************************************************/
  10. #define ntbJustFull            128            /* Full justification */
  11. #define kReturnChar            0x0d        /* Carriage return character */
  12.  
  13. /** MACROS ******************************************************************************/
  14. #define MAXOF(a,b)    (((a) > (b)) ? (a) : (b))
  15.  
  16. /** PUBLIC PROTOTYPES *******************************************************************/
  17. short NeoTextBox(unsigned char *theText, unsigned long textLen, Rect *box,
  18.     short just, short htCode, short *endY, short *lhUsed);
  19.